* nsIURLParser specifies the interface to an URL parser that attempts to
* follow the definitions of RFC 2396.
*/
class NS_NO_VTABLE nsIURLParser : public nsISupports {
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IURLPARSER_IID)
/**
* The string to parse in the following methods may be given as a null
* terminated string, in which case the length argument should be -1.
*
* Out parameters of the following methods are all optional (ie. the caller
* may pass-in a NULL value if the corresponding results are not needed).
* Signed out parameters may hold a value of -1 if the corresponding result
* is not part of the string being parsed.
*
* The parsing routines attempt to be as forgiving as possible.
*/
/**
* ParseSpec breaks the URL string up into its 3 major components: a scheme,
* an authority section (hostname, etc.), and a path.
*
* spec = <scheme>://<authority><path>
*/
/* void parseURL (in string spec, in long specLen, out unsigned long schemePos, out long schemeLen, out unsigned long authorityPos, out long authorityLen, out unsigned long pathPos, out long pathLen); */
* ParseAuthority breaks the authority string up into its 4 components:
* username, password, hostname, and hostport.
*
* auth = <username>:<password>@<hostname>:<port>
*/
/* void parseAuthority (in string authority, in long authorityLen, out unsigned long usernamePos, out long usernameLen, out unsigned long passwordPos, out long passwordLen, out unsigned long hostnamePos, out long hostnameLen, out long port); */
/* void parseUserInfo (in string userinfo, in long userinfoLen, out unsigned long usernamePos, out long usernameLen, out unsigned long passwordPos, out long passwordLen); */
* ParsePath breaks the path string up into its 4 major components: a file path,
* a param string, a query string, and a reference string.
*
* path = <filepath>;<param>?<query>#<ref>
*/
/* void parsePath (in string path, in long pathLen, out unsigned long filepathPos, out long filepathLen, out unsigned long paramPos, out long paramLen, out unsigned long queryPos, out long queryLen, out unsigned long refPos, out long refLen); */
* ParseFilePath breaks the file path string up into: the directory portion,
* file base name, and file extension.
*
* filepath = <directory><basename>.<extension>
*/
/* void parseFilePath (in string filepath, in long filepathLen, out unsigned long directoryPos, out long directoryLen, out unsigned long basenamePos, out long basenameLen, out unsigned long extensionPos, out long extensionLen); */
/* void parseFileName (in string filename, in long filenameLen, out unsigned long basenamePos, out long basenameLen, out unsigned long extensionPos, out long extensionLen); */
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsURLParser : public nsIURLParser
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIURLPARSER
nsURLParser();
private:
~nsURLParser();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsURLParser, nsIURLParser)
nsURLParser::nsURLParser()
{
/* member initializers and constructor code */
}
nsURLParser::~nsURLParser()
{
/* destructor code */
}
/* void parseURL (in string spec, in long specLen, out unsigned long schemePos, out long schemeLen, out unsigned long authorityPos, out long authorityLen, out unsigned long pathPos, out long pathLen); */
/* void parseAuthority (in string authority, in long authorityLen, out unsigned long usernamePos, out long usernameLen, out unsigned long passwordPos, out long passwordLen, out unsigned long hostnamePos, out long hostnameLen, out long port); */
/* void parseUserInfo (in string userinfo, in long userinfoLen, out unsigned long usernamePos, out long usernameLen, out unsigned long passwordPos, out long passwordLen); */
/* void parsePath (in string path, in long pathLen, out unsigned long filepathPos, out long filepathLen, out unsigned long paramPos, out long paramLen, out unsigned long queryPos, out long queryLen, out unsigned long refPos, out long refLen); */
/* void parseFilePath (in string filepath, in long filepathLen, out unsigned long directoryPos, out long directoryLen, out unsigned long basenamePos, out long basenameLen, out unsigned long extensionPos, out long extensionLen); */
/* void parseFileName (in string filename, in long filenameLen, out unsigned long basenamePos, out long basenameLen, out unsigned long extensionPos, out long extensionLen); */